Matrix4x4 Constructor(Single[])
In This Topic
Initializes a new instance of the
Matrix4x4 struct.
Syntax
'Declaration
Public Function New( _
ByVal () As System.Single _
)
public Matrix4x4(
System.float[]
)
Parameters
- values
- The values to assign to the components of the matrix. This must be an array with sixteen elements.
Exceptions
Exception | Description |
System.ArgumentNullException | Thrown when is null . |
System.ArgumentOutOfRangeException | Thrown when contains more or less than sixteen elements. |
See Also